You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mahmudahsan edited this page Oct 28, 2012
·
3 revisions
Welcome to the 203-ACM-Problems-Code wiki!
How to download all the problems from ACM Site?
YNH Webdev created the following script to download all the problems that I solved. So just run the script to get the problems. You need to run the script from the same folder where you stored all the .cpp solutions.
for f in *.cpp
do
wget `echo $f | sed 's/\(.*\)\(.\{2\}\)\.cpp/http:\/\/uva.onlinejudge.org\/external\/\1\/\1\2.html/'`
done