View index.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require '../src/Instagram.php'; | |
use MetzWeb\Instagram\Instagram; | |
session_start(); | |
if (isset($_SESSION['access_token'])) { | |
// user authentication -> redirect to media | |
header('Location: success.php'); |
View diagonals.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Array | |
def diagonals | |
[self, self.map(&:reverse)].inject([]) do |all_diags, matrix| | |
((-matrix.count + 1)..matrix.first.count).each do |offet_index| | |
diagonal = [] | |
(matrix.count).times do |row_index| | |
col_index = offet_index + row_index | |
diagonal << matrix[row_index][col_index] if col_index >= 0 | |
end | |
all_diags << diagonal.compact if diagonal.compact.count > 1 |
View diagonals.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Array | |
def diagonals | |
[self, self.map(&:reverse)].inject([]) do |all_diags, matrix| | |
((-matrix.count + 1)..matrix.first.count).each do |offet_index| | |
diagonal = [] | |
(matrix.count).times do |row_index| | |
col_index = offet_index + row_index | |
diagonal << matrix[row_index][col_index] if col_index >= 0 | |
end | |
all_diags << diagonal.compact if diagonal.compact.count > 1 |