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
<?php | |
namespace App\Http\Controllers\Api; | |
use App\Http\Resources\CategoryCollection; | |
use App\Http\Resources\ProductCollection; | |
use App\Http\Resources\ShopCollection; | |
use App\Models\Category; | |
use App\Models\Product; | |
use App\Models\Shop; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#include <iostream> | |
#include <queue> | |
#include <stack> | |
#include <algorithm> | |
#include <malloc.h> | |
using namespace std; | |
#define MAX_GHOST 3 | |
#define MAX_PEOPLE 3 |
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
/* line 1, custom.scss */ | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
/* line 7, custom.scss */ |
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
@import "varibale"; | |
header { | |
.header-bottom{ | |
background: #129FD8; | |
padding: 20px 0; | |
} | |
.hotline-number { | |
width: 48%; | |
border-right: 1px solid rgba(0,0,0,0.2); |
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
DirectoryIndex index.html index.php | |
<IfModule mod_deflate.c> | |
# Compress HTML, CSS, JavaScript, Text, XML, fonts | |
AddOutputFilterByType DEFLATE application/javascript application/x-javascript text/javascript application/json | |
AddOutputFilterByType DEFLATE application/x-font application/x-font-opentype application/x-font-otf application/x-font-truetype application/x-font-ttf font/opentype font/otf font/ttf application/x-woff application/x-font-woff | |
AddOutputFilterByType DEFLATE text/css text/html text/plain | |
<IfModule mod_headers.c> | |
# Remove browser bugs (only needed for really old browsers) |
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
#include <stdio.h> | |
#include <string.h> | |
struct Money{ | |
int amount; | |
char name[100]; | |
}; | |
int main() | |
{ | |
int n = 9; |
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
#include <stdio.h> | |
// 10 63 15 1 12 | |
// 0 0 0 0 0 | |
void Sort(int *A[100][100], int n) | |
{ | |
} | |
void moduloSort(char *filename) | |
{ |
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
#include <stdio.h> | |
#define MAX_VERTICES 100 | |
typedef struct{ | |
int A[MAX_VERTICES][MAX_VERTICES]; | |
}Graph; | |
void init_graph(Graph *G, int n) | |
{ |
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
#include <stdio.h> | |
#define MAX_VERTICES 100 | |
typedef struct{ | |
int A[MAX_VERTICES][MAX_VERTICES]; | |
}Graph; | |
void init_graph(Graph *G, int n) | |
{ |
NewerOlder