MCPcopy Index your code
hub / github.com/careercup/ctci / main

Method main

java/Chapter 5/Question5_8/Question.java:64–73  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

62 }
63
64 public static void main(String[] args) {
65 int width = 8 * 4;
66 int height = 15;
67 byte[] screen = new byte[width * height / 8];
68 //screen[1] = 13;
69
70 drawLine(screen, width, 8, 10, 2);
71
72 printScreen(screen, width);
73 }
74
75}

Callers

nothing calls this directly

Calls 2

drawLineMethod · 0.95
printScreenMethod · 0.95

Tested by

no test coverage detected