Skip to content

Instantly share code, notes, and snippets.

View AnielaMW's full-sized avatar
☺️
Looking for my next challenge.

A. Wolkonowski AnielaMW

☺️
Looking for my next challenge.
  • RedArgyle
  • Upstate New York
View GitHub Profile
import React, { Component } from 'react';
import StepTile from '../components/StepTile';
import ItemTile from '../components/ItemTile';
import FetchButton from '../components/FetchButton';
class InstructionsContainer
extends Component {
constructor(props) {
super(props);
this.state = {
@AnielaMW
AnielaMW / captcha.rb
Last active March 2, 2018 23:04
Captcha 3 Ways
require 'pry'
num1 = 1122 #=> 3
num2 = 8182759778 #=>15
num3 = 12345 #=>0
def captcha1(num)
list = num.to_s.split('').map(&:to_i)
total = 0