User profile: rabster

User info
User name:rabster
Bio:Currently in high school and programming is fun, so yeah.
Statistical data
Gender:Male
Occupation:Student
Skills:C++
Java
Javascript
Python
History
Joined:
Number of posts:227
Latest posts:

How to Align Numbers
Is this what you wanted? [code]#include <iostream> #include <iomanip> #include <string> using names...

Alrighty the DISPLAY Pascal’s Triangle Challenge
Wish I hadn't just seen this yesterday. [code] #include <iostream> #include <string> #include <vect...

Strictly Increasing Sequence of Integers
Yeah, I should have tested against more values but at the time of writing I was at school and a bit ...

Strictly Increasing Sequence of Integers
Fixed generic version [code] #include <algorithm> #include <iostream> template<typename T> bool sol...

Check if it's possible to make an integer array strictly ascending by removing a single element
Here is a generic method which looks nice. [code] #include <algorithm> #include <iostream> templat...