Skip to content

Instantly share code, notes, and snippets.

View sowmyagowri's full-sized avatar
🏠
Working from home

Sowmya Gowrishankar sowmyagowri

🏠
Working from home
View GitHub Profile
@sowmyagowri
sowmyagowri / BlueMix.js
Created September 30, 2017 00:51
Graph Using IBM Bluemix in Node.js
var express = require('express');
var cfenv = require('cfenv');
var app = express();
var Promise = require('bluebird');
var fs = Promise.promisifyAll(require('fs'));
var request = require('request-promise'); /* Note: using promise-friendly lib */
var uuid = require('node-uuid');
var appEnv = cfenv.getAppEnv();
var util = require('util');
@sowmyagowri
sowmyagowri / Sudoku Solution Validator.cpp
Created September 30, 2017 00:52
A Multi-threaded (27 threads) Sudoku Solution Validator
//Description:
/*
* This program takes a Sudoku puzzle solution as an input and then determines whether
* the puzzle solution is valid. This validation is done using both single thread and 27 threads.
* 27 threads are created as follows:
* 9 for each 3x3 subsection, 9 for the 9 columns, and 9 for the 9 rows.
* Each thread returns a integer value of 1 indicating that
* the corresponding region in the puzzle they were responsible for is valid.
* The program then waits for all threads to complete their execution and
* checks if the return values of all the threads have been set to 1.
@sowmyagowri
sowmyagowri / Air Quality Data Analysis.ipynb
Created October 1, 2017 17:36
Use Airquality data and display the AQI based on the input zipcode. This is done using IBM Data Science Experience
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sowmyagowri
sowmyagowri / Classifier.ipynb
Last active December 12, 2017 00:22
Python program for IMDB Movie Review Classification using k nearest neighbor algorithm
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sowmyagowri
sowmyagowri / Drug Activity Prediction.ipynb
Created December 12, 2017 00:21
Python Program for Drug Activity Prediction using Dimensionality Reduction and Classification
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sowmyagowri
sowmyagowri / Text-Clustering.ipynb
Created December 12, 2017 00:22
Python Program for Text Clustering using Bisecting k-means
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.