-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPinball.java
More file actions
37 lines (37 loc) · 997 Bytes
/
Pinball.java
File metadata and controls
37 lines (37 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//import java.util.Scanner;
//
//public class Pinball {
// public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
// int t=sc.nextInt();
// for (int i = 0; i < t; i++) {
// int n=sc.nextInt();
// String s=sc.next();
//
// for (int j = 0; j < n; j++) {
// StringBuilder s1=new StringBuilder(s);
// System.out.print(helper(j,s1)+" ");
// }
// System.out.println();
// }
// }
// static int helper(int j,StringBuilder s1){
// int res=0;
// while(true){
// if(j<0 || j>=s1.length()) break;
// if(s1.charAt(j)=='>'){
// j++;
// res++;
// s1.setCharAt(j-1,'<');
// }
// else if(s1.charAt(j)=='<'){
// j--;
// res++;
// s1.setCharAt(j+1,'>');
// }
//
//
// }
// return res;
// }
//}