Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/randhir200/string-cordinate

You are given a string s consisting of u, l, r, and d as characters and you are standing at point (x,y) = (0,0) and you have to traverse the string and do the movements in the direction you are been instructed by the character as If s[i] = 'u' then x = x + 1 If s[i] = 'd' then x = x - 1 If s[i] = 'r' then y = y + 1 If s[i] = 'l' then y = y - 1 Print the final coordinates after traversing the whole string.
https://github.com/randhir200/string-cordinate

Last synced: 1 day ago
JSON representation

You are given a string s consisting of u, l, r, and d as characters and you are standing at point (x,y) = (0,0) and you have to traverse the string and do the movements in the direction you are been instructed by the character as If s[i] = 'u' then x = x + 1 If s[i] = 'd' then x = x - 1 If s[i] = 'r' then y = y + 1 If s[i] = 'l' then y = y - 1 Print the final coordinates after traversing the whole string.

Awesome Lists containing this project