Habr
All streams
Search
Edit
Settings
Login
Pull to refresh
0
Sergey
@sibryle
FI/CO/PS administrator
2
Subscribers
Follow
Send message
Profile
Articles
Posts
News
Comments
1
More
Dropdown
Bookmarks
164
Followers
Following
10
Copy RSS link
Microsoft Research запустила браузерную игру-головоломку по обучению программированию
sibryle
Feb 25 2016 at 12:20
public class Program {
public static int[] Puzzle(int n) {
int [] x = new int[n];
for (int i = 0; i < n; i++) x[i] = i;
return x;
}
}
Information
Rating
Does not participate
Location
Славутич, Киевская обл., Украина
Registered
July 11 2009
Activity
June 23 at 08:05
public static int[] Puzzle(int n) {
int [] x = new int[n];
for (int i = 0; i < n; i++) x[i] = i;
return x;
}
}