This file contains hidden or 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
!Name : GAUSSIAN ELIMINATION | |
!Author : KAWSER | |
!Blog : http://blog.kawser.org | |
!Created : 15/05/2014 11:23 AM | |
!Updated : 19/05/2014 10:18 PM | |
! | |
!Short URL : http://goo.gl/V0QEg6 | |
! | |
!Purpose : Solve Linear system using Gaussian elimination with pivot [actually partial pivot] | |
! and without pivot [actually interchange the row with the next non zero row if the |
This file contains hidden or 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
#!/usr/bin/env python3 | |
""" | |
Object Name : PyDriveMount | |
Author : kawser | |
Author Blog : http://blog.kawser.org | |
Date : 20/04/2014 | |
Time : 1:40 PM |
This file contains hidden or 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
/* | |
Author : kawser | |
Author blog : http://blog.kawser.org | |
Problem ID : 100 | |
Time Limit : 3s | |
OJ Link : http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=36 | |
*/ |
This file contains hidden or 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
#!/usr/bin/env python | |
""" | |
Author : kawser | |
Author blog : http://blog.kawser.org | |
Problem ID : 100 | |
Time Limit : 3s |
This file contains hidden or 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
/* Program Name : cmdfy | |
* Developer : kawser | |
* Developer Blog: http://blog.kawser.org | |
* Blog Link: http://blog.kawser.org/2014/02/calling-cpp-function-fly.html | |
* | |
* | |
* Objective : This code demonstrates how to use function pointer | |
* to call a method via string | |
* | |
* IDEA : We will define some functions with similar signature and store these |
NewerOlder